| Conditions | 3 |
| Total Lines | 11 |
| Code Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | import { currentTranslations } from '../services/language'; |
||
| 23 | |||
| 24 | function showToast(message: string): void { |
||
| 25 | const existingToast = document.getElementById('toast-notification'); |
||
| 26 | if (existingToast) { |
||
| 27 | existingToast.remove(); |
||
| 28 | } |
||
| 29 | |||
| 30 | if (toastTimeout) { |
||
| 31 | clearTimeout(toastTimeout); |
||
| 32 | } |
||
| 33 | |||
| 34 | const toast = document.createElement('div'); |
||
| 55 |